85877413a0fed82e9d627420ac54fd141af77252,htroot/SettingsAck_p.java,SettingsAck_p,respond,#httpHeader#serverObjects#serverSwitch#,88

Before Change


                    // were changed, we now try to upload the seed list with the new settings
                    if (env.getConfig("seedUploadMethod","none").equalsIgnoreCase(uploaderName)) {
                        try {
                            yacyCore.saveSeedList(env);
                            
                            // we have successfully uploaded the seed file
                            prop.put("info", 13);

After Change


                    // were changed, we now try to upload the seed list with the new settings
                    if (env.getConfig("seedUploadMethod","none").equalsIgnoreCase(uploaderName)) {
                        String error;
                        if ((error = yacyCore.saveSeedList(env)) == null) {;
                            
                            // we have successfully uploaded the seed file
                            prop.put("info", 13);